home *** CD-ROM | disk | FTP | other *** search
/ Motor Sport Digital Archive Collection 1960s / Motor Sport Digital Archive Collection 1960s.iso / main.swf / scripts / mx / effects / effectClasses / PropertyChanges.as < prev    next >
Encoding:
Text File  |  2008-05-21  |  557 b   |  28 lines

  1. package mx.effects.effectClasses
  2. {
  3.    import mx.core.IUIComponent;
  4.    import mx.core.mx_internal;
  5.    
  6.    use namespace mx_internal;
  7.    
  8.    public class PropertyChanges
  9.    {
  10.       mx_internal static const VERSION:String = "2.0.1.0";
  11.       
  12.       public var start:Object;
  13.       
  14.       public var target:IUIComponent;
  15.       
  16.       public var end:Object;
  17.       
  18.       public function PropertyChanges(param1:IUIComponent)
  19.       {
  20.          end = {};
  21.          start = {};
  22.          super();
  23.          this.target = param1;
  24.       }
  25.    }
  26. }
  27.  
  28.